home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / eckelt01.zip / 1 / MAKEFILE.MET < prev    next >
Text File  |  1994-10-24  |  429b  |  25 lines

  1. # Makefile for MetaWare Hi C++ 
  2. # Tested with Version 3.2 on Windows NT 3.5
  3. CPP = hcnt
  4.  
  5. .c.exe:
  6.   $(CPP) $<
  7.  
  8. .cpp.exe:
  9.   $(CPP) $<
  10.   
  11. .cpp.obj:
  12.   $(CPP) -c $*.cpp
  13.   
  14. all: declare.exe libtestc.exe libtest.exe \
  15.      sizeof.exe nestest.exe scoperes.exe \
  16.  
  17. libtestc.exe : libtestc.obj lib.obj
  18.   $(CPP) $**
  19.  
  20. libtest.exe : libtest.obj libcpp.obj
  21.   $(CPP) $**
  22.  
  23. nestest.exe : nestest.obj nested.obj
  24.   $(CPP) $**
  25.